home *** CD-ROM | disk | FTP | other *** search
/ Aminet 21 / Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso / Aminet / comm / bbs / trionbbs100.lha / Trion / scripts / log < prev    next >
AmigaDOS Script File  |  1997-05-11  |  753b  |  32 lines

  1. .key file
  2. .def file="1"
  3.  
  4. ;;; Little 'shortcut' script to the logs of node 0-7 etc..
  5. ;;; Use:   log                ;log from node 1
  6. ;;;        log 0              ;log from node 0
  7. ;;;        log 2              ;log from node 2
  8. ;;;        log m              ;log from MailProcessor
  9. ;;;        log A              ;log from AreaFix
  10. ;;;        log t              ;log from Tick processor
  11. ;;;        log e              ;error log
  12.  
  13.  
  14. IF <file> EQ m
  15.    Ced trion:log/TMP.log
  16. Else
  17.    if <file> EQ a
  18.       Ced trion:log/areafix.log
  19.    Else
  20.       if <file> EQ t
  21.          Ced trion:log/ttick.log
  22.       Else
  23.          if <file> EQ e
  24.             Ced trion:log/error.log
  25.          Else
  26.             Ced trion:log/trion-<file>.log
  27.          EndIf
  28.       EndIf
  29.    EndIf
  30. EndIf
  31.  
  32.